Attribute VB_Name = "Module1"
'==============================================================================
'
'  VBSORT Example - Sort Visual Basic arrays
'  Copyright (c) 1997,1999,2001,2002 PowerBASIC, Inc.
'
'  Declares for Visual Basic
'
'==============================================================================

Declare Sub SortString Lib "VBSort.dll" (x$())
Declare Sub SortInt Lib "VBSort.dll" (x%())
Declare Sub SortLong Lib "VBSort.dll" (x&())
Declare Sub SortSingle Lib "VBSort.dll" (x!())
Declare Sub SortDouble Lib "VBSort.dll" (x#())
Declare Sub SortCurrency Lib "VBSort.dll" (x@())

